home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / texte / amigafaq / programmer / mui_request.c < prev    next >
C/C++ Source or Header  |  1994-07-28  |  417b  |  15 lines

  1. #include <clib/muimaster_protos.h>
  2. #ifdef AZTEC_C
  3. #include <pragmas/muimaster_lib.h>
  4. #endif
  5. #if defined(__SASC)  ||  defined(_DCC)  ||  defined(__MAXON__)
  6. #include <pragmas/muimaster_pragmas.h>
  7. #endif
  8.  
  9.  
  10. LONG MUI_Request(APTR app, APTR win, LONGBITS flags, char *title,
  11.          char *gadgets, char *format, ...)
  12. { return(MUI_RequestA(app, win, flags, title, gadgets, format,
  13.               ((STRPTR)(&format))+sizeof(format)));
  14. }
  15.